home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / pascal2 / pro8 / readme.doc < prev   
Text File  |  1987-02-02  |  601b  |  16 lines

  1. BList is a Turbo Pascal Source Code lister and BEGIN/END Counter
  2. program.  It can print a listing to Console or Printer, with
  3. optional begin/end, case/end, and record/end counter.  It was
  4. initially published in the Aug./Sept. issue of TUG Lines.
  5.  
  6. BLISTCPM.PAS is for CP/M-80 because the program
  7. looks for a parameter passed by CP/M at absolute location $80.
  8.  
  9. BLIST.PAS is for MS-DOS, and has the following declarations changed 
  10. in the GET_IN_FILE procedure:
  11.  
  12. Var FNam: String[14];
  13.     Parm: String[14] Absolute CSeg:$0081;
  14.     ParmLth: Byte Absolute CSeg:$0080;
  15.     Existing: Boolean;
  16.